home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
SOURCE
/
ONEINT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
235b
|
12 lines
main()
{
int index;
index = 13;
printf("The value of the index is %d\n", index);
index = 27;
printf("The value of the index is %d\n", index);
index = 10;
printf("The value of the index is %d\n", index);
}